home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / helpsys.arc / HELP.SYS next >
Text File  |  1986-03-07  |  24KB  |  851 lines

  1. ASSIGN (Drive)
  2.  
  3. Instructs DOS to route disk I/O request for one drive into disk I/O for another
  4. drive.
  5.  
  6. ASSIGN x=y
  7.  
  8. Where    x is the drive to which current disk I/O request to now be sent.
  9.  
  10.     y is the drive you want disk I/O request to now be sent.
  11.  
  12. ATTRIB (Attribute)
  13.  
  14. Allows you to set or reset the Read-Only file attribute, or to display the
  15. current setting of that attribute.
  16.  
  17. ATTRIB [+R] [-R] filename
  18.  
  19. Where    +R is used to set the read attribute of the specified file to
  20. read-only.
  21.  
  22.     -R is used to reset the read attribute of the specified file.
  23.  
  24. BACKUP
  25.  
  26. Backs up one or more files from one disk to another.
  27.  
  28. BACKUP x y [/S] [/M] [/A] [/D:mm-dd-yy]
  29.  
  30. Where    x is the drive and files that you want to backup.
  31.  
  32.     y is the drive that will contain the backup.
  33.  
  34.     /S to backup subdirectory files in addition to the files in the
  35.        specified or current directory.
  36.  
  37.     /M is to backup files that have been modified since the last backup.
  38.  
  39.     /A is to add the files to be backed up to the files already present
  40.        on the backup disk.
  41.  
  42.     /D is to backup files that have been modified on or after the specified
  43.        date.
  44. BATCH file processing
  45.  
  46. Batch commands are DOS commands that are contained in a special file called a
  47. batch file.  When you execute a batch file, DOS executes the commands you
  48. include in the batch file.
  49. 
  50. Help is available for the following batch commands by entering
  51. HELP BATCH command
  52.     ECHO
  53.     FOR
  54.     GOTO
  55.     IF
  56.     PAUSE
  57.     REM
  58.     SHIFT
  59.  
  60. ECHO
  61.  
  62. Allows or inhibits the screen display of DOS commands executed from a batch
  63. file.  It does not interfere with messages produced while the commands are
  64. processing.
  65.  
  66. ECHO [ON] [OFF] [message]
  67.  
  68. Where    ON displays all the commands on the standard output device as they are
  69.        executed.  This is the default if ECHO is not used.
  70.  
  71.     OFF stops the display of commands on the screen (including remarks).
  72.  
  73.     message displays the message on the screen regardless of the current
  74.     ON or OFF state.
  75.  
  76. If ECHO is issued with no parameters, the current ECHO state is displayed.
  77.  
  78. FOR
  79.  
  80. Allows iterative execution of DOS commands.
  81.  
  82. FOR %%variable IN (set) DO command
  83.  
  84. The %%variable is sequentially set to each member of SET and then the command
  85. is evaluated and executed.  If a member of set is an expression involving *
  86. and/or ?, then the %%variable is set to each matching filename from disk.
  87. Path names are allowed in set.
  88.  
  89. NOTE:  %%variable is required if the for command is included in a batch file.
  90. To type the FOR command at the DOS prompt, only include one %.
  91.  
  92. GOTO
  93.  
  94. Transfers control to the line following the one containing the appropriate
  95. label.    A label is inserted in a batch file as a colon (:) followed by the
  96. label
  97. name.
  98.  
  99. GOTO label
  100.  
  101. IF
  102.  
  103. Allows conditional execution of DOS commands.
  104.  
  105. IF [NOT] condition command
  106.  
  107. Where    condition is one of the following:
  108.  
  109.         ERRORLEVEL number is true if the previous program had an exit
  110.         code of number or higher.  The number is specified as a decimal
  111.         value.
  112.  
  113.         string1==string2 is true when string1 and string2 are identical.
  114.         NOTE:  The corresponding characters of string1 and string2 must
  115.         both be uppercase or lowercase to be identical.
  116.  
  117.         EXIST filename
  118.  
  119. PAUSE
  120. Suspends system processing and displays the message
  121.     "Strike a key when ready...."
  122.  
  123. PAUSE message
  124.  
  125. Where    message is an optional message to be displayed.
  126.  
  127. REM (Remark)
  128.  
  129. Displays remarks from with a batch file.
  130.  
  131. REM message
  132.  
  133. Where message is any string up to 123 characters long
  134.  
  135. SHIFT
  136.  
  137. Allows command lines to make use of more than 10 (%0 through %9) replaceable
  138. parameters
  139.  
  140. SHIFT
  141.  
  142. Causes all parameters on the command line to be shifted one position to the
  143. left, with the %0 parameter being replaced by the %1 parameter, etc.
  144.  
  145. BREAK
  146.  
  147. Allows you to instruct DOS to check for a control break whenever a program
  148. request DOS to perform any functions.
  149.  
  150. BREAK [ON] [OFF]
  151.  
  152. Where    ON is used to set BREAK=ON.  This means that DOS checks for
  153.     CTL-BREAK whenever it is requested.
  154.  
  155.     OFF is used to set BREAK=OFF.  This means that DOS only checks for
  156.     CTL-BREAK during Standard I/O operations.
  157.  
  158. BREAK without parameters will display the current BREAK setting.
  159.  
  160. The default is OFF.
  161.  
  162. CD (Change Directory)
  163.  
  164. Changes the DOS current directory of the specified or default drive, or
  165. displays the current directory path of a drive.
  166.  
  167. CHDIR path
  168. or
  169. CD path
  170.  
  171. Where    path is the drive and directory you wish to set.  The drive letter is
  172.     not needed if you want to set the directory of the current drive.
  173.  
  174.  
  175. CHDIR (Change Directory)
  176.  
  177. Changes the DOS current directory of the specified or default drive, or
  178. displays the current directory path of a drive.
  179.  
  180. CHDIR path
  181. or
  182. CD path
  183.  
  184. Where    path is the drive and directory you wish to set.  The drive letter is
  185.     not needed if you want to set the directory of the current drive.
  186.  
  187. CD without parameters will display the current directory.
  188.  
  189. CHKDSK (Check Disk)
  190.  
  191. Checks the validity of the disk data.
  192.  
  193. CHKDSK [/F] [/V]
  194.  
  195. where    /F    To have CHKDSK fix errors that are found in the directory or
  196.         file allocation table.
  197. CLS (Clear Screen)
  198.  
  199. Clears the display.
  200.  
  201. COMMAND (Secondary Command Processor)
  202.  
  203. Use the following command to invoke a secondary command processor.  The primary
  204. reason is to invoke a batch file from with another batch file.
  205.  
  206. COMMAND [/P] [/C string]
  207.  
  208. Where    /P    Causes the copy of the new command processor to become permanent
  209.         in memory.  This is normally not used.
  210.  
  211.     /C string Allows you to pass a string and then automatically exit back
  212.         to the primary command processor after the command is complete.
  213.  
  214.         string is a command that you want to pass to the command
  215.         processor.  The command is interpreted and acted upon as if you
  216.         had typed it at the DOS prompt.
  217. COMP (Compare Files)
  218.  
  219. Compares the contents of the first set of specified files to the contents of the
  220. second set of specified files.
  221.  
  222. COMP file1 file2
  223.  
  224. Where    file1    Is the primary file
  225.  
  226.     file2    Is the secondary file
  227.  
  228. COPY
  229.  
  230. Copies one or more file to the specified disk.
  231.  
  232. COPY [/A][/B] ipfile [/A][/B] opfile [/V]
  233.  
  234. Where    ipfile    Is the input file
  235.  
  236.     opfile    Is the output file
  237.  
  238.     When used before the input file
  239.  
  240.     /A    Causes the file to be treated as an ASCII (text) file.    The
  241.         files data is copied up to, but not including the first
  242.         end-of-file character (Ctrl-Z) found in the file.  The
  243.         remainder of the file is not copied.
  244.  
  245.     /B    Causes the entire file (based on the directory file size)
  246.         to be copied.
  247.  
  248.     When used before the output file
  249.  
  250.     /A    Causes a Ctrl-Z character to be added as the last character
  251.         of the file.
  252.  
  253.     /B    Causes no end-of-file character (Ctrl-Z) to be added.
  254.  
  255.     Defaults:  /A when concatenation is being performed and /B when
  256.     concatenation is not being performed)
  257.  
  258. CTTY (Change Console)
  259.  
  260. Changes the standard input and output console to an auxiliary console, or
  261. restores the keyboard and screen as the standard input and output devices.
  262.  
  263. CCTY device-name
  264.  
  265. Where    device-name is AUX, COM1, OR COM2.  Use CON to reset the primary
  266.         standard input and output devices to the primary console.
  267. DATE
  268.  
  269. DATE mm-dd-yy
  270.  
  271. Where    mm-dd-yy is the month, day, and year
  272.  
  273. DEL (Delete)
  274.  
  275. Deletes the specified file or files.
  276.  
  277. DELETE file
  278.  
  279. Where    file    Is the file name or file templet.  If file is not specified
  280.         *.* is assumed.  When *.* is specified or assumed the
  281.         following message is displayed to verify that you actually
  282.         want to delete all files:
  283.  
  284.         Are you sure (Y/N)?
  285.  
  286. DIR (Directory)
  287.  
  288. List either all the directory entries, or only those for specified files.
  289.  
  290. DIR file [/P] [W]
  291.  
  292. Where    file    is a file name or templet.
  293.  
  294.     /P    to pause the display when the screen is full.
  295.  
  296.     /W    to display the information in a wide display format.
  297.  
  298. DISKCOMP (Compare Diskettes)
  299.  
  300. Compares the contents of the diskette in the first specified drive to the
  301. contents of the diskette in the second specified drive.
  302.  
  303. DISKCOMP d1 d2 [/1] [/8]
  304.  
  305. Where    d1    is the primary drive.
  306.  
  307.     d2    is the secondary drive.
  308.  
  309.     /1    compares only the first side.
  310.  
  311.     /8    compares only 8 sectors per track
  312.  
  313. DISKCOPY (Copy Diskettes)
  314.  
  315. Copies the contents of the diskette in the source drive to the diskette in the
  316. target drive.  The target diskette is formatted if necessary, during the copy.
  317.  
  318. DISKCOPY d1 d2 [/1]
  319.  
  320. Where    d1    is the input drive.
  321.  
  322.     d2    is the output drive.
  323.  
  324.     /1    to copy only the first side regardless of the diskette or
  325.         drive type.
  326.  
  327. ERASE (Erase File)
  328.  
  329. Erase the specified file or files. (See DELETE).
  330.  
  331. FIND (Find Filter)
  332.  
  333. Sends all lines from the specified filenames that contain the specified string
  334. to the standard output device.
  335.  
  336. FIND [/V][/C][/N] "string" file
  337.  
  338. Where    /V    to display all lines NOT containing the string
  339.  
  340.     /C    to display a count of the number of lines containing the string.
  341.  
  342.     /N    to display the relative line number of each matching line ahead
  343.         of the line from the file.
  344.  
  345.     "string" Enclose the string in double quotes(").  Two quotes in
  346.         succession are taken as single quote.  An uppercase string does
  347.         not match a lowercase string.
  348.  
  349. FORMAT
  350.  
  351. Initializes the disk in the designated or default drive to a recording format
  352. acceptable to DOS; analyzes the entire disk for any defective tracks; and
  353. prepares the disk to accept DOS files by initializing the directory, File
  354. Allocation Table, and system loader.
  355.  
  356. CAUTION     CAUTION     CAUTION
  357. Please note that formatting destroys all data on the disk.
  358.  
  359. FORMAT d [/S][/1][/8][/V][/B][/4]
  360.  
  361. Where    d    is the drive to be formatted.
  362.  
  363.     /S    to copy the operating system files to the new disk.
  364.  
  365.     /1    to format the diskette for single-sided.
  366.  
  367.     /8    to format the diskette for 8 sectors per track.
  368.  
  369.     /V    to give the disk a volume label.
  370.  
  371.     /B    See manual.
  372.  
  373.     /4    See manual.
  374.  
  375. HELPDOC
  376.             Configuring The Help Facility
  377.  
  378.  
  379.     The new SCP help facility can be easily tailored for OEM or
  380. end user needs. The program "HELP.COM" looks for a file "HELP.SYS" in
  381. the default directory, or through path searching. When distributed, HELP
  382. is located in the BIN directory with the rest of the command files.
  383.  
  384.     HELP.SYS is really just an ASCII text file with a few special
  385. control keys embedded for text manipulation. If you have a screen editor
  386. that can insert control characters (Control-C,etc.) ,such as VEDIT, then
  387. you can re-edit the file for your specific needs, such as special commands,
  388. further explanations. Explained below is how the text file is manipulated.
  389. 
  390.     HELP.COM searches for the file "HELP.SYS" on the default directory.
  391. If it is not found, the default environment will be searched for "PATH="
  392. then it will start path searches, just as the command processor does. If
  393. you have another application which uses the same filename "HELP.SYS" then you
  394. can rename the file,and with the debugger, you can change HELP.COM to search
  395. for another name. See explanation below.
  396.  
  397.     IF HELP finds the file, it opens it with XENIX type file calls. An
  398. 8K buffer is established and the 1st 8k of the file is read in. If there was
  399. no key or subkey typed when help starts up, the default menu is displayed.
  400. When a key is type (such as 'debug') HELP will search each 'record' until
  401. it finds that key. Case is ignored and the length of the key doesn't matter.
  402. You do not have to type the full key name for searching, it will just search
  403. for the 1st match of the key name entered. You need type a key only up to the
  404. first significant letter. For example:
  405.  
  406.         "BAT"    Will find batch processing record.
  407.  
  408.         "BAC"    Will find the backup record.
  409. 
  410.     Records are separated from each other by a Control-A (01H). If there
  411. are subkeys for that record, (such as FIND OPTION) the subkey records have a
  412. Control-B at the beginning of the record. Records can be any length, if the
  413. text buffer fills up, it will automatically fill in more. When the proper
  414. record is found, text is display to the screen, a line counter keeps track
  415. of the number of lines. If the text fills more than 23 lines, the scrolling
  416. stops and waits for user (unless pause flag is disabled). The only non-alpha
  417. characters in the file are Control-D (04H) - page screen, and Control-C - end
  418. of file. A summary of the control keys is below:
  419.  
  420.         Control-A    : Marks beginning of text record.
  421.  
  422.         Control-B    : Marks beginning of sub-key text record.
  423.  
  424.         Control-D    : Page screen (if pause flag). Stop text
  425.                   writing and fill screen with blanks. Wait
  426.                   for user entry to start. (Cleans up display
  427.                   into desired screen pages)
  428.  
  429.         Control-C    : End of file.
  430. 
  431.     The command line in help is a standard buffer and can use the
  432. standard DOS editing template keys. If a simple return is typed, the old
  433. template will not be lost. Typing a control-x while records are viewed will
  434. return the user to the help command level. You can return to DOS by typing
  435. control-C at any time, or "Q" or "QUIT" from the help command level.
  436.  
  437.     To speed up search of keys and simplify code, it is assumed that the
  438. keys are in alphanumeric order. If they are not, it will not find the key on
  439. the first pass and an error will be generated. It will find the key on the
  440. 2nd pass, but this is usually not a desired effect. If you add new records,
  441. make sure they are in alphabetical order.
  442.  
  443.  
  444.     Changing HELP.SYS to another name: Just rename the file with REN.
  445.  
  446.         REN HELP.SYS  (Newname)
  447.  
  448.         You must modify HELP.COM to search for another name. The
  449.         debugger DEBUG.COM can do it. Type the following:
  450.  
  451.         DEBUG \BIN\HELP.COM
  452.  
  453.         This will load in the help command file. Then type
  454.  
  455.         D742
  456.  
  457.         You should see:
  458.  
  459. d742
  460.  
  461. 0B7E:0740           48 45 4C 50-2E 53 59 53 00 00 00 00     HELP.SYS....
  462. 0B7E:0750  00 24 00 00 00 00 00 00-00 00 00 00 00 00 00 00   .$..............
  463. 0B7E:0760  00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00   ................
  464.  
  465.                 If you don't see the above, search any memory area nearby.
  466.         You must only modify if you find "HELP.SYS". This is a
  467.         reserved area for the filename. You can modify it by typing
  468.  
  469.         E742    "(Newfilename)",0
  470.  
  471.         E is the enter command, and 704 is the starting address for
  472.         the text string. The new filename must be a maximum of 8
  473.         characters for the filename and 3 for the extension. You must
  474.         put a 0 at the end of the name.
  475. 
  476.         Save your new HELP.COM by typing
  477.  
  478.         W
  479.         Q
  480.  
  481.         Do not attempt to modify any registers or other memory
  482.         locations as the program will not work then. All error
  483.         messages will use the new filename you have just set up.
  484.  
  485.  
  486.  
  487.     NEW DOCUMENTATION
  488.  
  489.  
  490.  
  491.     This program was originally written by me for Seattle Computer
  492. products. Some of the documentation in the help.sys will not apply to
  493. the IBM owners! I hope to download most of these programs (Count,Debug
  494. etc.) to the database in the near future as I know they will be useful
  495. to all PC lovers! Most of these programs were set up for generic
  496. MS-DOS machines and will be unfamiliar to the IBM world. Some of the programs
  497. were also distributed by IBM but I modified them at SCP for our own
  498. needs, since I had the source code to MS-DOS and its utilities.
  499.  
  500.     I hope to xmit most of these different programs sometime soon as
  501. I feel the whole community of users can use them, and since I no longer
  502. work at SCP I have complete rights to them! Enjoy it!
  503.  
  504.  
  505.                     Craig Derouen
  506.                     Seattle,Wa
  507.  
  508. LABEL
  509.  
  510. Allows you to create, change, or delete a volume label.
  511.  
  512. LABEL d [label]
  513.  
  514. Where    d    is the disk drive.
  515.  
  516.     label    to specify the volume label.  They can be up to 11 characters
  517.         and are in the same format as volume labels created by
  518.         FORMAT /V.  If you do not specify a volume label, you are
  519.         prompted for one.
  520.  
  521. MKDIR (Make a Directory)
  522.  
  523. Creates a subdirectory on the specified disk.
  524.  
  525. MKDIR path
  526.   or
  527. MD path
  528.  
  529. Where    path    specifies the path of directory names.
  530.  
  531. MODE
  532.  
  533. Set the way that a printer, a Color/Graphics monitor adapter, or an Asynchronous
  534. Communications Adapter operates.
  535.  
  536. Help for the four options of the MODE command are available by entering:
  537. HELP MODE option
  538.  
  539. Where    option is PRINTER to set the printer.
  540.         DISPLAY to set the display.
  541.         COMM to set the Asynchronous Communications Adapter
  542.         SERIAL to redirect printer output to serial printer
  543.  
  544. COMM
  545.  
  546. Used to set the Asynchronous Communications Adapter.
  547.  
  548. MODE COMn[:]baud[,parity[,databits[,stopbits[,P]]]]
  549.  
  550. Where    n    is either 1 or 2 (asynchronous communications adapter number).
  551.  
  552.     baud    110, 150, 300, 600, 1200, 2400, 4800, or 9600.
  553.  
  554.     parity    is either N (none), O (odd), or E (even) default is E.
  555.  
  556.     databits is either 7 or 8.  Default is 7.
  557.  
  558.     stopbits is either 1 or 2.  If baud is 110 then default is 2, otherwise
  559.         the default is 1.
  560.  
  561.     P    indicates that the asynchronous adapter is being used for a
  562.         serial interface printer.
  563.  
  564. DISPLAY
  565.  
  566. To switch display adapters and setting the display mode of the Color/Graphics
  567. monitor adapter.
  568.  
  569. MODE n
  570. or
  571. MODE [n],[m][,T]
  572.  
  573. Where    n    is 40, 80, BW40, CO40, CO80, or MONO.
  574.         40 sets the display width to 40 characters.
  575.         80 sets the display width to 80 characters.
  576.         BW40 sets the color monitor for a width of 40 characters and
  577.             disables the color.
  578.         BW80 sets the color monitor for a width of 80 characters and
  579.             disables the color.
  580.         CO40 sets the color monitor for a width of 40 characters and
  581.             enables the color.
  582.         CO80 sets the color monitor for a width of 80 characters and
  583.             enables the color.
  584.         MONO switches the active display adapter to the Monocrome
  585.             Display Adapter.
  586.  
  587.     m    is R or L (shift the display right or left)
  588.  
  589.     T    request a test pattern used to align the display.
  590.  
  591. PRINTER
  592.  
  593. MODE LPT#[:][,[n],[m][,P]]
  594.  
  595. Where    #    is 1 or 2 (the printer number)
  596.  
  597.     n    is 80 or 132 (characters per line)
  598.  
  599.     m    is 6 or 8 (lines per inch vertical spacing)
  600.  
  601.     P    specifies continuous retry on time-out errors
  602.  
  603.  
  604. SERIAL PRINTER
  605.  
  606. To redirect parallel printer output to an asynchronous communications adapter.
  607.  
  608. MODE LPT#[:]=COMn
  609.  
  610. Where    #    is either 1, 2, or 3 (printer number)
  611.  
  612.     n    is either 1 or 2 (asynchronous communications adapter number)
  613.  
  614.  
  615. MORE (More Filter)
  616.  
  617. Reads data from the standard input device, and sends one screen of data to the
  618. standard output device, and then pauses with the message --More--.
  619.  
  620. MORE
  621.  
  622. PATH (Set Search Directory)
  623.  
  624. Specifies the directories for commands or batch files that were not found by a
  625. search of the current directory
  626.  
  627. PATH [[path[;path]...]
  628.  
  629. Where    path    is the full path of the directory.  You should also include the
  630.         drive as part of the path.
  631.  
  632.         When a path is not specified the current path will be displayed.
  633.  
  634. PRINT
  635.  
  636. Prints a queue (list) of data files on the printer while you are doing other
  637. tasks on the computer.
  638.  
  639. PRINT [/D:device][/B:buffsiz][/U:busytick][/M:maxtick][/S:timeslice][/Q:quesiz]
  640.     [/C][/T][/P][filename]
  641.  
  642. Where    device    is used to specify the print device.  If not specified the
  643.         default PRN is used.  IMPORTANT: If you specify /D, it must be
  644.         the first parameter.
  645.  
  646.     buffsiz is used to the the size in bytes of the internal buffer.  The
  647.         default is 512 bytes.
  648.  
  649.     quesiz    is used to specify how many print files you can have in the
  650.         queue.    The range of values is from 1 to 32.  The default is 10.
  651.  
  652.     timeslice is used to specify the time-slice value.  The default is 8
  653.         time slices.  The range is from 1 to 255.
  654.  
  655.     busytick is used to specify the number of clock ticks that PRINT will
  656.         wait until the print device is not busy.
  657.  
  658.     maxtick is used to specify how many clock ticks PRINT can have to print
  659.         characters on the print device.  The default is 2.  The range
  660.         is from 1 to 255.
  661.  
  662.     /T    All queued files are canceled form the print queue.
  663.  
  664.     /C    Allows you to select which file or files to cancel.  The
  665.         preceding filename and all following filenames entered on the
  666.         command line are canceled form the print queue until a /P is
  667.         found.
  668.  
  669.     /P    The preceding filename and all following filenames are added to
  670.         the print queue until a /C is found on the command line.
  671.  
  672. NOTE:    The parameters /D, /B, /Q, /S, /U, and /M can only be specified the
  673.     first time you use the PRINT command.
  674.  
  675. PROMPT (Set System Prompt)
  676.  
  677. Sets a new DOS prompt.
  678.  
  679. PROMPT [prompt text]
  680.  
  681. Where prompt text can contain one or more of the following special character
  682. strings that are in the form of $c.
  683.  
  684. Where    c    is one of the following:
  685.  
  686.     $    The $ character
  687.     t    time
  688.     d    date
  689.     p    current directory of the default drive
  690.     v    version number
  691.     n    default drive letter
  692.     g    the > character
  693.     l    the < character
  694.     b    the | character
  695.     q    the = character
  696.     h    A backspace; the previous character is erased
  697.     _    the CR LF sequence
  698.  
  699. RECOVER
  700.  
  701. Recovers files from a disk that has a defective sector.
  702.  
  703. SEE THE DOS MANUAL!
  704.  
  705. RENAME
  706.  
  707. Changes the name of the file specified in the first parameter to the name and
  708. extension given in the second parameter.
  709.  
  710. RENAME opath npath
  711.  
  712. Where    opath    is the old name
  713.  
  714.     npath    is the new name
  715.  
  716. RESTORE
  717.  
  718. Restores one or more backup files from a disk to another disk.
  719.  
  720. RESTORE d: path [/S][/P]
  721.  
  722. Where    d:    is used to specify the drive that contains the BACKUP files.
  723.  
  724.     path    is used to specify where you want to restore the files and what
  725.         files from the source you want to restore.
  726.  
  727.     /S    causes all files in subdirectories in addition to the files in
  728.         in the specified directory.
  729.  
  730.     /P    causes RESTORE to prompt you before restoring files that have
  731.         changed since they were last backed up, or that are marked
  732.         read-only.
  733.  
  734. For more information see the manual.
  735.  
  736. RMDIR (Remove a Directory)
  737.  
  738. Removes a subdirectory from the specified disk.
  739.  
  740. RMDIR path
  741. or
  742. RD path
  743.  
  744. Where    path    is the path of the directory to be deleted.
  745.  
  746. Note:    A directory can not be deleted if there are any files in it.
  747.  
  748. SET (Set Environment)
  749.  
  750. This command inserts strings into the command processor's environment.
  751.  
  752. SET [name=[parm]]
  753.  
  754. Where    name    is the name associated with the parameter.
  755.  
  756.     parm    is the data associated with the name.
  757.  
  758. If name is specified and not parm the that name will be removed from the
  759. environment.  If name is not specified then the current contents of the
  760. environment space will be displayed.
  761.  
  762. SORT (Sort Filter)
  763.  
  764. Read data from the standard input device, sorts the data, then writes the data
  765. to the standard output device.
  766.  
  767. SORT [/R][/+n]
  768.  
  769. Where    /R    causes it to sort in reverse order.
  770.  
  771.     /+n    is used to start sorting with column n.  The default is 1.
  772.  
  773. SUBST (Substitute)
  774.  
  775. Allows you to use a different drive specifier to refer to another drive or
  776. path.
  777.  
  778. SUBST d: path
  779. or
  780. SUBST d: /D
  781.  
  782. Where    d:    is used to specify the drive letter that you want to use to
  783.         refer to another drive or path.
  784.  
  785.     path    is used to specify the drive and path that you want to refer
  786.         to with d:.  The path you specify should start from the root
  787.         directory.
  788.  
  789.     /D    is used to delete a substitution.  You must specify the drive
  790.         letter of the drive whose substitution you want to delete.
  791.  
  792. SYS (System)
  793.  
  794. Transfers the operating system files IBMDOS.COM and IBMBIO.COM from the current
  795. drive to the specified drive.
  796.  
  797. SYS d:
  798.  
  799. Where    d:    is the drive you want to transfer the operating system to.
  800.  
  801. Note:    The disk you are transferring the operating system to must have been
  802.     formatted with the /S option (see FORMAT).
  803.  
  804. TIME
  805.  
  806. Permits you to enter or change the time known to the system.
  807.  
  808. TIME [hh:mm[:ss[.xx]]
  809.  
  810. Where    hh    is the hours using a 24 hour clock.
  811.  
  812.     mm    is the minutes.
  813.  
  814.     ss    is the seconds.
  815.  
  816.     xx    is the hundredths of seconds.
  817.  
  818. TREE
  819.  
  820. Displays all of the directory paths found on the specified drive, and optionally
  821. list the files in the root directory and each subdirectory.
  822.  
  823. TREE [d:][/F]
  824.  
  825. Where    d:    is used to specify the drive.  The default is the current drive.
  826.  
  827.     /F    is used to display the names of the files in all directories.
  828.  
  829. TYPE
  830.  
  831. Displays the contents of the specified file on the standard output device.
  832.  
  833. TYPE path
  834.  
  835. Where    path    is the path of the file to be displayed.
  836.  
  837. VERIFY
  838.  
  839. Verifies that the data written on a disk has been correctly recorded.
  840.  
  841. VERIFY [ON | OFF]
  842.  
  843. Where    ON    turns verify on.
  844.  
  845.     OFF    turns verify off.
  846.  
  847. VERIFY with no parameters displays the current status.
  848.  
  849.  
  850. 
  851.